Ignore the broken symlinks test on windows
authorTom Jakubowski <tom@crystae.net>
Tue, 8 Jul 2014 01:07:23 +0000 (18:07 -0700)
committerTom Jakubowski <tom@crystae.net>
Tue, 8 Jul 2014 01:42:53 +0000 (18:42 -0700)
tests/test_cargo_compile.rs

index 771988eb3aea3ca2a43bc5391c217484accf0560..0409e52031a5d907e79d3b780d2da7bbf545141d 100644 (file)
@@ -627,7 +627,8 @@ test!(self_dependency {
                 execs().with_status(0));
 })
 
-test!(ignore_bogus_symlinks {
+#[cfg(not(windows))]
+test!(ignore_broken_symlinks {
     let p = project("foo")
         .file("Cargo.toml", basic_bin_manifest("foo").as_slice())
         .file("src/foo.rs", main_file(r#""i am foo""#, []).as_slice())